home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / zmdm.zoo / makefile.man < prev    next >
Makefile  |  1991-04-27  |  613b  |  32 lines

  1. #
  2. # Makefile for Mark Williams C
  3. #    Version 2.00 (or higher) required.
  4. #    Please ignore warnigs about a constant being promoted to long
  5. #    and about some unused variables.
  6. #    
  7. #     Edit config.h before make'ing.
  8. #
  9. #    Jwahar Bammi
  10. #
  11. #
  12.  
  13. SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c \
  14. manx.asm phone.c
  15.  
  16. OBJ =  fileio.o zm.o util.o rz.o sz.o common.o tyme.o transfer.o main.o \
  17. manx.o phone.o
  18.  
  19. CFLAGS = -DMANX=1
  20. LDFLAGS = -V
  21.  
  22. zmdm.prg : $(OBJ)
  23.     ln -o zmdm.prg $(LDFLAGS) $(OBJ) -Lc
  24. manx.o : manx.asm
  25.     as -V manx.asm
  26.  
  27. $(OBJ) : common.h zmdm.h decl.h config.h
  28. transfer.o : expandar.c
  29.  
  30. clean:
  31.     rm *.o
  32.